home *** CD-ROM | disk | FTP | other *** search
/ PLAYymate for OS/2 / Playmate for OS2.iso / p4os2035 / bio.h < prev    next >
Text File  |  1989-02-07  |  1KB  |  41 lines

  1. /*
  2.    BIOrhythm header file
  3.    Created by Microsoft Corp., 1988
  4. */
  5. /* String table constants */
  6. #define IDS_APPNAME      1
  7. #define IDS_KIDNAME      2
  8.  
  9. /* Resource Ids */
  10. #define ID_BIO          1
  11. #define IDD_ABOUT       2
  12. #define IDD_DATE        3
  13.  
  14. /* Menu constants */
  15. #define IDM_DATES    0x100
  16. #define IDM_LEGEND    0x101
  17. #define    IDM_COPY    0x102
  18. #define IDM_ABOUT    0x103
  19.  
  20. /* Bio Dialog Box constants */
  21. #define ID_BDYEAR        301
  22. #define ID_BDMONTH       302
  23. #define ID_BDDAY         303
  24. #define ID_YEAR          304
  25. #define ID_MONTH         305
  26. #define ID_DAY           306
  27. #define ID_OS2INI        307
  28.  
  29. /* Function prototypes */
  30. SHORT cdecl main           ( void );
  31. MRESULT CALLBACK BioWndProc    ( HWND, USHORT, MPARAM, MPARAM );
  32. MRESULT CALLBACK KidWndProc    ( HWND, USHORT, MPARAM, MPARAM );
  33. VOID    APIENTRY APPPaint      ( HWND );
  34. MRESULT CALLBACK BioDlg        ( HWND, USHORT, MPARAM, MPARAM );
  35. MRESULT CALLBACK About           ( HWND, USHORT, MPARAM, MPARAM );
  36. MRESULT CALLBACK FrameWndProc  ( HWND, USHORT, MPARAM, MPARAM );
  37.  
  38. double        PASCAL julian      ( int, int, double );
  39. void        PASCAL calendar    ( double, int *, int *, double * );
  40. long        PASCAL trunc4      ( double );
  41.